c# retry delay request

62

c# retry delay request -

RetryPolicy retryIfException = 
	Policy.Handle<Exception>().Retry(3); 
 
retryIfException.Execute(someBusinessLogic.DoSomethingThatMightThrowException);

Comments

Submit
0 Comments